home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Event.cp next >
Text File  |  1997-06-28  |  173b  |  14 lines

  1. // Event.cp
  2.  
  3. #ifndef Event_h
  4. #include "Event.h"
  5. #endif
  6.  
  7. Tick Event::when( 0 );
  8.  
  9. Event::Event( const EventRecord& event )
  10.   : asReceived( event )
  11.   {
  12.     when = event.when;
  13.   }
  14.